home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / cstdio.arc / INCLUDE.ARC / SCRIO.H < prev    next >
C/C++ Source or Header  |  1985-05-14  |  606b  |  19 lines

  1. /*    scrio.h - screen I/O definitions.
  2.     (C) Copyright 1985 Gregory R. Mansfield - All Rights Reserved.
  3.     G. R. Mansfield.  85/01/03.
  4.     Ver 1.0-5514.
  5. */
  6.  
  7. #ifndef _scrio    /* allow more than 1 include of this file */
  8. #define _scrio
  9.  
  10. extern int scr_br, scr_bc;        /* base - row, column */
  11. extern int scr_lr, scr_lc;        /* limit - row, column */
  12. extern BYTE scr_attr;            /* character attribute */
  13. extern int scr_mode;            /* display mode */
  14. extern int scr_page;            /* active display page */
  15. extern BYTE scr_rows;            /* number of screen rows */
  16. extern BYTE scr_cols;            /* number of screen columns */
  17.  
  18. #endif
  19.